Package edu.uky.ai.ml
Class Main
java.lang.Object
edu.uky.ai.ml.Main
public class Main
extends java.lang.Object
Creates and trains a neural network to recognize capital letters.
- Author:
- Your Name
-
Field Summary
Fields Modifier and Type Field Description static doubleERROR_THRESHOLDThe highest acceptable error for the networkstatic doubleMAX_ITERATIONSThe maximum number of training iterations to be run -
Constructor Summary
Constructors Constructor Description Main() -
Method Summary
Modifier and Type Method Description static voidmain(java.lang.String[] args)Creates and trains a neural network, then creates a GUI that allows you to interact with the network to see its predictions.
-
Field Details
-
ERROR_THRESHOLD
public static final double ERROR_THRESHOLDThe highest acceptable error for the network- See Also:
- Constant Field Values
-
MAX_ITERATIONS
public static final double MAX_ITERATIONSThe maximum number of training iterations to be run- See Also:
- Constant Field Values
-
-
Constructor Details
-
Main
public Main()
-
-
Method Details
-
main
public static void main(java.lang.String[] args)Creates and trains a neural network, then creates a GUI that allows you to interact with the network to see its predictions.- Parameters:
args- ignored
-